/* Colors */
/* SVG */
/*encode SVG as a data uri without it being in base64*/
/* line 5, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.icon {
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak: none;
}

/* line 18, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.icon--arrow-left:before {
  content: ' ';
  background-image: url("../../images/back_menu.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 32px 27px;
  width: 32px;
  height: 27px;
  display: block;
  position: initial;
}

/* Menu styles */
/* line 40, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
#ml-menu.menu {
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* line 46, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__wrap {
  position: absolute;
  top: 4em;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  width: calc(100% + 50px);
  padding-right: 50px;
  left: 0;
  right: 0;
}

/* line 59, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__level {
  position: absolute;
  top: 5;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  height: 0;
  padding-bottom: 30px;
}

/* line 73, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__level--current {
  visibility: visible;
  height: auto;
  z-index: 1;
}

/* line 79, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__level.animate-inFromRight,
.menu__level.animate-inFromLeft {
  height: auto;
}

/* line 84, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item {
  display: block;
  width: calc(100% - 50px);
  margin-left: 45px;
  background: #FFFFFF;
}

/* line 91, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__link {
  font: 700 22px/100% "Open Sans", font70108, Arial, Helvetica, sans-serif;
  letter-spacing: 2pt;
  position: relative;
  display: block;
  padding: 10px 5px;
  color: #666666;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  text-decoration: none;
  max-width: 400px;
  text-transform: uppercase;
}

/* line 105, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__link:hover,
.menu__link[data-submenu]:hover::after {
  color: #00598F;
  opacity: 1;
}

/* line 111, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__link--current::before {
  content: ' ';
  font-size: 1.5em;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 0.5em;
  height: 4px;
  color: #ffb432;
}

/* line 122, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
[class^='animate-'],
[class*=' animate-'] {
  visibility: visible;
}

/* line 127, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.animate-outToRight .menu__item {
  -webkit-animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes outToRight {
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/* line 148, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.animate-outToLeft .menu__item {
  -webkit-animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes outToLeft {
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 169, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.animate-inFromLeft .menu__item {
  -webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 200, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.animate-inFromRight .menu__item {
  -webkit-animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
  animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

@-webkit-keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inFromRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 231, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs {
  font-size: 0.65em;
  line-height: 1;
  position: relative;
  padding: 2.5em 3.75em 1.5em 2.5em;
  margin-left: 105px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: color 300ms ease-in-out, background 300ms ease-in-out, opacity 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* line 243, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs--hidden {
  opacity: 0;
  visibility: hidden;
}

/* line 248, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs a {
  font: 700 15px/100% "Open Sans", font70108, Arial, Helvetica, sans-serif;
  color: #aaaaaa;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  text-transform: uppercase;
}

/* line 258, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs a:last-child {
  pointer-events: none;
}

/* line 262, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs a:hover {
  color: #8182e0;
}

/* line 266, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs a:not(:last-child)::after {
  display: inline-block;
  padding: 0 0.5em;
  color: #33353e;
}

/* line 272, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs a:not(:last-child):hover::after {
  color: #33353e;
}

/* line 276, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__back {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #2a2b30;
  cursor: pointer;
  margin: 0 0 0 40px;
  padding: 15px 20px 10px 5px;
  width: 100%;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: color 300ms ease-in-out, background 300ms ease-in-out, opacity 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* line 293, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__back--hidden {
  pointer-events: none;
  opacity: 0;
}

/* line 298, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__back:hover,
.menu__back:focus {
  color: #fff;
  outline: none;
}

/* Open and close buttons */
/* line 307, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.action {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
}

/* line 317, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.action:focus {
  outline: none;
}

/* line 321, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.action--open {
  font-size: 1.5em;
  top: 1em;
  left: 1em;
  display: none;
  color: #fff;
  position: fixed;
  z-index: 1000;
}

/* line 331, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.action--close {
  font-size: 1.1em;
  top: 1.25em;
  right: 1em;
  display: none;
  color: #45464e;
}

/* line 339, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__breadcrumbs:not(:first-child) {
  display: none;
}

@media screen and (max-width: 1024px) {
  /* line 344, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu-wrap {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  /* line 351, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  #ml-menu.menu {
    margin: 0 auto;
  }
}

/* line 359, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor {
  padding: 50px 0 0 5px;
  display: -webkit-flex;
  display: flex;
}

/* line 363, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor .titulo-nome {
  margin: 0 30px 15px 0;
}

/* line 366, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor .titulo-nome .titulo {
  color: #858585;
  font: 400 10px/20px "Open Sans", font70108, Arial, Helvetica, sans-serif;
  letter-spacing: 1pt;
  text-transform: uppercase;
}

/* line 372, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor .titulo-nome .nome {
  color: #858585;
  font: 700 12px/20px "Open Sans", font70108, Arial, Helvetica, sans-serif;
  letter-spacing: 1pt;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

/* line 383, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor .extra .tel {
  color: #858585;
  font: 700 14px/20px "Open Sans", font70108, Arial, Helvetica, sans-serif;
  letter-spacing: 1pt;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

/* line 391, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
.menu__item > .gestor .extra .email {
  color: #858585;
  font: 700 10px/20px "Open Sans", font70108, Arial, Helvetica, sans-serif;
  letter-spacing: 1pt;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  /* line 405, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__back {
    margin-left: 30px;
  }
  /* line 408, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__breadcrumbs {
    margin-left: 80px;
  }
  /* line 412, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__item {
    margin-left: 30px;
    width: calc(100% - 80px);
  }
  /* line 416, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__item > .gestor {
    padding: 50px 0 0 5px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column;
    flex-flow: column;
  }
  /* line 423, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__link .catalogue-item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  /* line 427, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__link .catalogue-item .img-wrap {
    width: auto;
    margin: 3px 20px 3px 3px;
    box-shadow: 0 0 0 3px #EEEEEE;
    height: 95px;
  }
  /* line 433, C:/Users/lrent/Desktop/new css/scss/mobile-menu.scss */
  .menu__link .catalogue-item .img-wrap img {
    height: 95px;
  }
}

/*# sourceMappingURL=../css/mobile-menu.map */